home *** CD-ROM | disk | FTP | other *** search
/ Teach Your Children: Road Construction Ahead / Teach Your Children: Road Construction Ahead.iso / pc / rca / rca.exe / rca.DXR / 00008_ignore.ls < prev    next >
Encoding:
Text File  |  1996-07-18  |  484 b   |  20 lines

  1. on mouseDown
  2.   set plainCast to the castNum of sprite the clickOn
  3.   set the castNum of sprite the clickOn to plainCast + 1
  4.   updateStage()
  5.   repeat while the mouseDown
  6.     if rollOver(the clickOn) then
  7.       set the castNum of sprite the clickOn to plainCast + 1
  8.       updateStage()
  9.       set pressed to 1
  10.       next repeat
  11.     end if
  12.     set the castNum of sprite the clickOn to plainCast + 1
  13.     updateStage()
  14.     set pressed to 0
  15.   end repeat
  16.   if pressed then
  17.   else
  18.   end if
  19. end
  20.